-
Quite the odd issue here.. I think this may be more of a problem of debugging, however I’m going to …
- 437 views
- 1 answers
- 0 votes
-
VersionA: useEffect(() => doRequest(), []); VersionB: useEffect(() => { doRequest(); }, []); I’ve always thought both the version are exactly …
- 374 views
- 2 answers
- 0 votes
-
Following to example Im trying to create my own app on Next.js using Redux But I cant understand the purpose …
- 363 views
- 1 answers
- 0 votes
-
i have problem with next js app in server side. When i build and export my app in production in …
- 359 views
- 1 answers
- 0 votes
-
I think that the best practise is to have a global .scss file, with all the basic styles (like primary …
- 351 views
- 1 answers
- 0 votes
-
In my Next.JS app I import my stylesheet in _app.js like this: import ‘../public/css/Index.css’; Index.css contains this: .index-container { margin: …
- 481 views
- 0 answers
- 0 votes
-
I am trying to implement a cart system using localStorage, the codes are below, how I trying to achieve that …
- 381 views
- 1 answers
- 0 votes
-
I am using NextJS to product SSR pages, and these pages are language-specific. I would like to set the lang …
- 330 views
- 1 answers
- 0 votes
-
I tried to make an image responsive in NextJs, but for some reason it is not changing it’s size. Whereas …
- 363 views
- 0 answers
- 0 votes
-
How to update cart page data instantly when any changes in the localStorage myCart array? Here is my code below …
- 361 views
- 2 answers
- 0 votes